[Hdrflow-svn] SF.net SVN: hdrflow: [241] trunk/app/HDRFlow
Status: Pre-Alpha
Brought to you by:
glslang
From: <gl...@us...> - 2007-08-12 21:10:47
|
Revision: 241 http://hdrflow.svn.sourceforge.net/hdrflow/?rev=241&view=rev Author: glslang Date: 2007-08-12 14:10:41 -0700 (Sun, 12 Aug 2007) Log Message: ----------- + adds Source node header file. TBD Modified Paths: -------------- trunk/app/HDRFlow/HDRFlow.xcodeproj/project.pbxproj Added Paths: ----------- trunk/app/HDRFlow/Source.hpp Modified: trunk/app/HDRFlow/HDRFlow.xcodeproj/project.pbxproj =================================================================== --- trunk/app/HDRFlow/HDRFlow.xcodeproj/project.pbxproj 2007-08-12 20:39:16 UTC (rev 240) +++ trunk/app/HDRFlow/HDRFlow.xcodeproj/project.pbxproj 2007-08-12 21:10:41 UTC (rev 241) @@ -57,6 +57,7 @@ 67A8A6E40C4181C600DB3F1B /* ScriptEngine.hpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; path = ScriptEngine.hpp; sourceTree = "<group>"; }; 67A8A6E90C41836600DB3F1B /* Python.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Python.framework; path = /System/Library/Frameworks/Python.framework; sourceTree = "<absolute>"; }; 67A8A73D0C4183C500DB3F1B /* ScriptEngine.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = ScriptEngine.cpp; sourceTree = "<group>"; }; + 67B58EC60C6FAC2100A1C748 /* Source.hpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; path = Source.hpp; sourceTree = "<group>"; }; 67BD59C70C36BE3600F0F7DF /* HDRFlowController.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = HDRFlowController.h; sourceTree = "<group>"; }; 67C064ED0C52231A00E9ED8E /* English */ = {isa = PBXFileReference; lastKnownFileType = wrapper.nib; name = English; path = English.lproj/Preferences.nib; sourceTree = "<group>"; }; 67C0BA220C5B69AF00E0E258 /* Viewer.hpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; path = Viewer.hpp; sourceTree = "<group>"; }; @@ -158,6 +159,7 @@ 29B97317FDCFA39411CA2CEA /* Resources */, 29B97323FDCFA39411CA2CEA /* Frameworks */, 19C28FACFE9D520D11CA2CBB /* Products */, + 67B58EC60C6FAC2100A1C748 /* Source.hpp */, ); name = HDRFlow; sourceTree = "<group>"; Added: trunk/app/HDRFlow/Source.hpp =================================================================== --- trunk/app/HDRFlow/Source.hpp (rev 0) +++ trunk/app/HDRFlow/Source.hpp 2007-08-12 21:10:41 UTC (rev 241) @@ -0,0 +1,30 @@ + +// HDRFlow - A image processing application + +// Copyright (c) 2007 Goncalo N. M. de Carvalho +// Released under the GPL. +// For more information, see http://www.cryogenicgraphics.com/hdrflow. + +#ifndef SOURCE_INC_ +#define SOURCE_INC_ + +#include "Cache.hpp" + +namespace hdrflow { + +class Source +{ +public: + explicit Source( ) + { } + + + +private: +}; + +typedef boost::shared_ptr<Source> SourcePtr; + +} + +#endif This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |