Changeset 338 in flair-src for trunk/lib/FlairCore/src
- Timestamp:
- Oct 17, 2019, 2:49:35 PM (5 years ago)
- Location:
- trunk
- Files:
-
- 2 deleted
- 3 edited
- 2 copied
Legend:
- Unmodified
- Added
- Removed
-
trunk
-
Property svn:mergeinfo
set to
/branches/sanscv merged eligible
-
Property svn:mergeinfo
set to
-
trunk/lib/FlairCore/src/Picture.cpp
r330 r338 17 17 18 18 #include "Picture.h" 19 #include " cvimage.h"19 #include "Image.h" 20 20 #include "Layout.h" 21 21 #include "LayoutPosition.h" … … 30 30 31 31 Picture::Picture(const LayoutPosition *position, string name, 32 const cvimage *image)32 const Image *image) 33 33 : SendData(position, name, "Picture", 200) { 34 34 this->image = image; -
trunk/lib/FlairCore/src/Picture.h
r330 r338 18 18 namespace flair { 19 19 namespace core { 20 class cvimage;20 class Image; 21 21 } 22 22 … … 45 45 */ 46 46 Picture(const LayoutPosition *position, std::string name, 47 const core:: cvimage *image);47 const core::Image *image); 48 48 49 49 /*! … … 70 70 void ExtraXmlEvent(void){}; 71 71 72 const core:: cvimage *image;72 const core::Image *image; 73 73 }; 74 74
Note:
See TracChangeset
for help on using the changeset viewer.