Subversion Repositories DevTools

Rev

Rev 2218 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2218 Rev 2226
Line 31... Line 31...
31
 
31
 
32
#include <vcl.h>
32
#include <vcl.h>
33
#pragma hdrstop
33
#pragma hdrstop
34
//## end module%420720460243.includes
34
//## end module%420720460243.includes
35
 
35
 
36
// TransactionStream
-
 
37
#include "TransactionStream.h"
-
 
38
// UdFileManifest
36
// UdFileManifest
39
#include "UdFileManifest.h"
37
#include "UdFileManifest.h"
-
 
38
// TransactionStream
-
 
39
#include "TransactionStream.h"
40
//## begin module%420720460243.additionalDeclarations preserve=yes
40
//## begin module%420720460243.additionalDeclarations preserve=yes
41
#if defined( WIN32 ) || defined( __BCPLUSPLUS__ ) || defined( __BORLANDC__ )
41
#if defined( WIN32 ) || defined( __BCPLUSPLUS__ ) || defined( __BORLANDC__ )
42
   const char g_separator = '\\';
42
   const char g_separator = '\\';
43
#else
43
#else
44
   const char g_separator = '/';
44
   const char g_separator = '/';
Line 53... Line 53...
53
 
53
 
54
 
54
 
55
// Class TransactionStream 
55
// Class TransactionStream 
56
 
56
 
57
//## Operation: TransactionStream%4207228700FB
57
//## Operation: TransactionStream%4207228700FB
58
TransactionStream::TransactionStream (const std::string &folder, const std::string &batchPrefix, const std::string &batchSuffix, const bool &buildManifest, const std::string &manifestPrefix, const std::string &manifestSuffix)
58
TransactionStream::TransactionStream (const std::string &folder, const std::string &batchPrefix, const std::string &batchSuffix, const bool &buildManifest, const std::string &manifestPrefix, const std::string &manifestSuffix, const std::string &pathmapTarget)
59
  //## begin TransactionStream::TransactionStream%4207228700FB.hasinit preserve=no
59
  //## begin TransactionStream::TransactionStream%4207228700FB.hasinit preserve=no
60
      : m_batchNumber(1),
60
      : m_batchNumber(1),
61
        m_batchCount(0),
61
        m_batchCount(0),
62
        m_batchPrefix(batchPrefix),
62
        m_batchPrefix(batchPrefix),
63
        m_batchSize(0),
63
        m_batchSize(0),
Line 74... Line 74...
74
	if ( buildManifest )
74
	if ( buildManifest )
75
	{
75
	{
76
		m_manifest = new UdFileManifest(
76
		m_manifest = new UdFileManifest(
77
			folder,
77
			folder,
78
			manifestPrefix,
78
			manifestPrefix,
79
			manifestSuffix );
79
			manifestSuffix,
-
 
80
			pathmapTarget );
80
	}
81
	}
81
 
82
 
82
  //## end TransactionStream::TransactionStream%4207228700FB.body
83
  //## end TransactionStream::TransactionStream%4207228700FB.body
83
}
84
}
84
 
85