Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2012-05-19 13:23:08 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-05-19 13:23:08 +0400
commit112b1a0779d0e570f8b6726b2d3deb4f45d784a5 (patch)
tree697b16d8d41fe0df37e14f509008bd19d7eedb80 /intern/ghost/GHOST_ISystemPaths.h
parent03ed173fe6a9d286faacc2e66c5c654cd571f18c (diff)
style cleanup: ghost headers
Diffstat (limited to 'intern/ghost/GHOST_ISystemPaths.h')
-rw-r--r--intern/ghost/GHOST_ISystemPaths.h24
1 files changed, 13 insertions, 11 deletions
diff --git a/intern/ghost/GHOST_ISystemPaths.h b/intern/ghost/GHOST_ISystemPaths.h
index dea5436c485..f610fde4582 100644
--- a/intern/ghost/GHOST_ISystemPaths.h
+++ b/intern/ghost/GHOST_ISystemPaths.h
@@ -52,20 +52,22 @@ public:
* Returns a pointer to the one and only system (nil if it hasn't been created).
* @return A pointer to the system.
*/
- static GHOST_ISystemPaths* get();
+ static GHOST_ISystemPaths *get();
protected:
/**
* Constructor.
* Protected default constructor to force use of static createSystem member.
*/
- GHOST_ISystemPaths() {}
+ GHOST_ISystemPaths() {
+ }
/**
* Destructor.
* Protected default constructor to force use of static dispose member.
*/
- virtual ~GHOST_ISystemPaths() {}
+ virtual ~GHOST_ISystemPaths() {
+ }
public:
/**
@@ -73,29 +75,29 @@ public:
* "unpack and run" path, then look for properly installed path, not including versioning.
* @return Unsigned char string pointing to system dir (eg /usr/share/blender/).
*/
- virtual const GHOST_TUns8* getSystemDir() const = 0;
+ virtual const GHOST_TUns8 *getSystemDir() const = 0;
/**
* Determine the base dir in which user configuration is stored, not including versioning.
* If needed, it will create the base directory.
* @return Unsigned char string pointing to user dir (eg ~/.blender/).
*/
- virtual const GHOST_TUns8* getUserDir() const = 0;
+ virtual const GHOST_TUns8 *getUserDir() const = 0;
/**
- * Determine the directory of the current binary
- * @return Unsigned char string pointing to the binary dir
- */
- virtual const GHOST_TUns8* getBinaryDir() const = 0;
+ * Determine the directory of the current binary
+ * @return Unsigned char string pointing to the binary dir
+ */
+ virtual const GHOST_TUns8 *getBinaryDir() const = 0;
/**
* Add the file to the operating system most recently used files
*/
- virtual void addToSystemRecentFiles(const char* filename) const = 0;
+ virtual void addToSystemRecentFiles(const char *filename) const = 0;
private:
/** The one and only system paths*/
- static GHOST_ISystemPaths* m_systemPaths;
+ static GHOST_ISystemPaths *m_systemPaths;
};
#endif