diff Applications/Samples/SampleApplicationBase.h @ 527:b1377625e4ba bgo-commands-codegen

Removed ICommand and friends + fixed warnings + added missing header files in solution (in CMakeLists.txt file)
author Benjamin Golinvaux <bgo@osimis.io>
date Sun, 17 Mar 2019 20:14:20 +0100
parents b70e9be013e4
children 79bb0a02d1cc
line wrap: on
line diff
--- a/Applications/Samples/SampleApplicationBase.h	Tue Mar 12 15:01:36 2019 +0100
+++ b/Applications/Samples/SampleApplicationBase.h	Sun Mar 17 20:14:20 2019 +0100
@@ -41,7 +41,6 @@
     class SampleApplicationBase : public IStoneApplication
     {
     protected:
-      BaseCommandBuilder commandBuilder_;
       WorldSceneWidget*  mainWidget_;   // ownership is transfered to the application context
 
     public:
@@ -56,8 +55,6 @@
         return "Stone of Orthanc - Sample";
       }
 
-      virtual BaseCommandBuilder& GetCommandBuilder() {return commandBuilder_;}
-
       virtual void Finalize() {}
       virtual IWidget* GetCentralWidget() {return mainWidget_;}