Kaydet (Commit) 4c6037df authored tarafından Ivo Hinkelmann's avatar Ivo Hinkelmann

CWS-TOOLING: integrate CWS bserver52

This diff is collapsed.
...@@ -287,6 +287,7 @@ private: ...@@ -287,6 +287,7 @@ private:
SDepInfoList* RemoveDepInfoList(SDepInfoList* pInfoList ); SDepInfoList* RemoveDepInfoList(SDepInfoList* pInfoList );
PrjList* pTempCommandDataList; PrjList* pTempCommandDataList;
BOOL bTempCommandDataListPermanent; BOOL bTempCommandDataListPermanent;
BOOL bError;
public: public:
Prj(); Prj();
Prj( ByteString aName ); Prj( ByteString aName );
...@@ -329,6 +330,9 @@ public: ...@@ -329,6 +330,9 @@ public:
void SetTempCommandDataListPermanent (BOOL bVar = TRUE) {bTempCommandDataListPermanent = bVar;} void SetTempCommandDataListPermanent (BOOL bVar = TRUE) {bTempCommandDataListPermanent = bVar;}
BOOL IsTempCommandDataListPermanent() {return bTempCommandDataListPermanent;} BOOL IsTempCommandDataListPermanent() {return bTempCommandDataListPermanent;}
void SetError (BOOL bVar = TRUE) {bError = bVar;}
BOOL HasError () {return bError;}
Prj& operator<< ( SvStream& rStream ); Prj& operator<< ( SvStream& rStream );
Prj& operator>> ( SvStream& rStream ); Prj& operator>> ( SvStream& rStream );
}; };
...@@ -396,6 +400,7 @@ protected: ...@@ -396,6 +400,7 @@ protected:
void Expand_Impl(); void Expand_Impl();
void ExpandPrj_Impl( Prj *pPrj, Prj *pDepPrj ); void ExpandPrj_Impl( Prj *pPrj, Prj *pDepPrj );
ULONG SearchFileEntry( StarFileList *pStarFiles, StarFile* pFile ); ULONG SearchFileEntry( StarFileList *pStarFiles, StarFile* pFile );
void InsertTokenLine (const ByteString& rToken, Prj** ppPrj, const ByteString& rProjectName, const sal_Bool bExtendAlias = sal_True);
public: public:
Star(); Star();
...@@ -421,7 +426,7 @@ public: ...@@ -421,7 +426,7 @@ public:
BOOL RemovePrj ( Prj* pPrj ); BOOL RemovePrj ( Prj* pPrj );
void RemoveAllPrj (); void RemoveAllPrj ();
void InsertToken( char *pChar ); StarFile* ReadBuildlist (const String& rFilename, BOOL bReadComments = FALSE, BOOL bExtendAlias = TRUE);
BOOL NeedsUpdate(); BOOL NeedsUpdate();
SolarFileList* NeedsFilesForUpdate(); SolarFileList* NeedsFilesForUpdate();
void ReplaceFileEntry( StarFileList *pStarFiles, StarFile* pFile ); void ReplaceFileEntry( StarFileList *pStarFiles, StarFile* pFile );
...@@ -472,7 +477,7 @@ public: ...@@ -472,7 +477,7 @@ public:
USHORT Write( String aFileName ); USHORT Write( String aFileName );
USHORT WriteMultiple( String rSourceRoot ); USHORT WriteMultiple( String rSourceRoot );
void InsertTokenLine( ByteString& rString ); void InsertTokenLine ( const ByteString& rTokenLine );
}; };
#endif #endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment