summaryrefslogtreecommitdiff
path: root/tools/bootstrp/cppdep.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'tools/bootstrp/cppdep.hxx')
-rw-r--r--tools/bootstrp/cppdep.hxx26
1 files changed, 13 insertions, 13 deletions
diff --git a/tools/bootstrp/cppdep.hxx b/tools/bootstrp/cppdep.hxx
index 4fbe785f5935..46d401f57698 100644
--- a/tools/bootstrp/cppdep.hxx
+++ b/tools/bootstrp/cppdep.hxx
@@ -2,7 +2,7 @@
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
+ *
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
@@ -29,32 +29,32 @@
#include <tools/list.hxx>
#include <tools/string.hxx>
#define PATH_SEP ":"
-#define DIR_SEP "/"
+#define DIR_SEP "/"
DECLARE_LIST( ByteStringList, ByteString * )
class CppDep
{
- ByteString aSourceFile;
- ByteStringList *pSearchPath;
+ ByteString aSourceFile;
+ ByteStringList *pSearchPath;
protected:
- ByteStringList *pFileList;
- ByteStringList *pSources;
+ ByteStringList *pFileList;
+ ByteStringList *pSources;
- BOOL Search( ByteString aFileName );
- ByteString Exists( ByteString aFileName );
+ BOOL Search( ByteString aFileName );
+ ByteString Exists( ByteString aFileName );
- ByteString IsIncludeStatement( ByteString aLine );
+ ByteString IsIncludeStatement( ByteString aLine );
public:
CppDep( ByteString aFileName );
CppDep();
virtual ~CppDep();
- virtual void Execute();
+ virtual void Execute();
- ByteStringList* GetDepList(){return pFileList;}
- BOOL AddSearchPath( const char* aPath );
- BOOL AddSource( const char * aSource );
+ ByteStringList* GetDepList(){return pFileList;}
+ BOOL AddSearchPath( const char* aPath );
+ BOOL AddSource( const char * aSource );
};
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */