[Hdrflow-svn] SF.net SVN: hdrflow: [244] trunk/app/HDRFlow
Status: Pre-Alpha
Brought to you by:
glslang
|
From: <gl...@us...> - 2007-08-13 20:48:47
|
Revision: 244
http://hdrflow.svn.sourceforge.net/hdrflow/?rev=244&view=rev
Author: glslang
Date: 2007-08-13 13:48:45 -0700 (Mon, 13 Aug 2007)
Log Message:
-----------
+ small changes to Source
Modified Paths:
--------------
trunk/app/HDRFlow/English.lproj/MainMenu.nib/info.nib
trunk/app/HDRFlow/English.lproj/MainMenu.nib/keyedobjects.nib
trunk/app/HDRFlow/HDRFlow.xcodeproj/project.pbxproj
trunk/app/HDRFlow/Source.hpp
Added Paths:
-----------
trunk/app/HDRFlow/Sink.hpp
Modified: trunk/app/HDRFlow/English.lproj/MainMenu.nib/info.nib
===================================================================
--- trunk/app/HDRFlow/English.lproj/MainMenu.nib/info.nib 2007-08-12 22:53:34 UTC (rev 243)
+++ trunk/app/HDRFlow/English.lproj/MainMenu.nib/info.nib 2007-08-13 20:48:45 UTC (rev 244)
@@ -15,9 +15,9 @@
<string>446.1</string>
<key>IBOpenObjects</key>
<array>
+ <integer>21</integer>
+ <integer>29</integer>
<integer>266</integer>
- <integer>29</integer>
- <integer>21</integer>
</array>
<key>IBSystem Version</key>
<string>8R2218</string>
Modified: trunk/app/HDRFlow/English.lproj/MainMenu.nib/keyedobjects.nib
===================================================================
(Binary files differ)
Modified: trunk/app/HDRFlow/HDRFlow.xcodeproj/project.pbxproj
===================================================================
--- trunk/app/HDRFlow/HDRFlow.xcodeproj/project.pbxproj 2007-08-12 22:53:34 UTC (rev 243)
+++ trunk/app/HDRFlow/HDRFlow.xcodeproj/project.pbxproj 2007-08-13 20:48:45 UTC (rev 244)
@@ -45,6 +45,7 @@
67032E9D0C46DB9C00FA55E2 /* HDRFlow.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = HDRFlow.framework; path = /Library/Frameworks/HDRFlow.framework; sourceTree = "<absolute>"; };
671E22910C41652E00CA1860 /* ScriptEditorController.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = ScriptEditorController.h; sourceTree = "<group>"; };
671E22A20C4166E400CA1860 /* ScriptEditorController.mm */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.objcpp; path = ScriptEditorController.mm; sourceTree = "<group>"; };
+ 67399AE90C70F9DD007536EA /* Sink.hpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; path = Sink.hpp; sourceTree = "<group>"; };
673D04450C522A610096513A /* PreferencesController.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = PreferencesController.h; sourceTree = "<group>"; };
673D044F0C522C980096513A /* PreferencesController.m */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.objc; path = PreferencesController.m; sourceTree = "<group>"; };
674E44630C3F854A0036A908 /* English */ = {isa = PBXFileReference; lastKnownFileType = wrapper.nib; name = English; path = English.lproj/ScriptEditor.nib; sourceTree = "<group>"; };
@@ -160,6 +161,7 @@
29B97317FDCFA39411CA2CEA /* Resources */,
29B97323FDCFA39411CA2CEA /* Frameworks */,
19C28FACFE9D520D11CA2CBB /* Products */,
+ 67399AE90C70F9DD007536EA /* Sink.hpp */,
);
name = HDRFlow;
sourceTree = "<group>";
Added: trunk/app/HDRFlow/Sink.hpp
===================================================================
--- trunk/app/HDRFlow/Sink.hpp (rev 0)
+++ trunk/app/HDRFlow/Sink.hpp 2007-08-13 20:48:45 UTC (rev 244)
@@ -0,0 +1,26 @@
+
+// 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 SINK_INC_
+#define SINK_INC_
+
+#include "Cache.hpp"
+
+namespace hdrflow {
+
+class Sink
+{
+public:
+ explicit Sink( )
+ { }
+};
+
+typedef boost::shared_ptr<Sink> SinkPtr;
+
+}
+
+#endif
Modified: trunk/app/HDRFlow/Source.hpp
===================================================================
--- trunk/app/HDRFlow/Source.hpp 2007-08-12 22:53:34 UTC (rev 243)
+++ trunk/app/HDRFlow/Source.hpp 2007-08-13 20:48:45 UTC (rev 244)
@@ -10,6 +10,8 @@
#include "Cache.hpp"
+namespace pl = olib::openpluginlib;
+
namespace hdrflow {
class Source
@@ -18,9 +20,11 @@
explicit Source( )
{ }
+ pl::string uri( ) const;
+ void set_uri( const pl::string& uri );
-
private:
+ CachePtr cache_;
};
typedef boost::shared_ptr<Source> SourcePtr;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|