X-Git-Url: https://feistymeow.org/gitweb/?a=blobdiff_plain;f=core%2Fapplications%2Fexample_application%2Fexample_application.cpp;h=c6a27913e39d4f197ed2e3c35569fc9b322cc8e9;hb=a5cb8184848bac3d3c484a72a90ec1ff08919288;hp=f82f2f7873405e6900e8091bb933aac764ea6935;hpb=38bc4d6f3bb72ca72a984430552fd85ce06a074a;p=feisty_meow.git diff --git a/core/applications/example_application/example_application.cpp b/core/applications/example_application/example_application.cpp index f82f2f78..c6a27913 100644 --- a/core/applications/example_application/example_application.cpp +++ b/core/applications/example_application/example_application.cpp @@ -65,7 +65,7 @@ public: virtual int execute(); //!< the root of the program's activity. - int print_instructions() { LOG("no instructions at this time."); return 1; } + int print_instructions(); //!< describes the available command line options for this program. private: @@ -82,6 +82,13 @@ application_example::application_example() application_example::~application_example() {} +int application_example::print_instructions() +{ + FUNCDEF("print_instructions"); + LOG("no instructions at this time."); + return 1; +} + void application_example::handle_startup() { FUNCDEF("handle_startup");