Skip to content
Snippets Groups Projects
Commit ece8e377 authored by Andreas Schenk's avatar Andreas Schenk
Browse files

fixed endif in molck cmake list

fixed return type for GetSolidColor in vertex_arrray.hh
re-added accidentally deleted function declaration in chain_type.hh
parent 666d91e5
No related branches found
No related tags found
No related merge requests found
......@@ -134,7 +134,7 @@ class DLLEXPORT_OST_GFX IndexedVertexArray {
void SetSolid(bool f) {solid_=f;}
bool GetSolid() const {return solid_;}
void SetSolidColor(const Color& c) {solid_color_=c;}
bool GetSolidcolor() const {return solid_color_;}
Color GetSolidcolor() const {return solid_color_;}
void SetClipOffset(float f) {clip_offset_=f;}
float GetClipOffset() const {return clip_offset_;}
......
......@@ -57,6 +57,7 @@ ChainType DLLEXPORT_OST_MOL ChainTypeFromString(const StringRef identifier);
///
/// \return The ChainType corresponding to the input, throws a
/// ost::Error on unknown type
ChainType DLLEXPORT_OST_MOL ChainTypeFromString(const String& identifier);
/// \brief Return the String identifier for a given type
///
......
if (NOT WIN32)
executable(NAME molck SOURCES main.cc
DEPENDS_ON ost_io STATIC)
endif(WIN32)
endif(NOT WIN32)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment