Skip to content

src/application/sgns_application.hpp

Namespaces

Name
sgns
sgns::application

Classes

Name
class sgns::application::SgnsApplication
Application interface for starting the SuperGenius node.

Source code

#ifndef SUPERGENIUS_SRC_APPLICATION_HPP
#define SUPERGENIUS_SRC_APPLICATION_HPP

namespace sgns::application {

  class SgnsApplication {
   public:
    virtual ~SgnsApplication() = default;

    virtual void run() = 0;
  };
}  // namespace sgns::application

#endif  // SUPERGENIUS_SRC_APPLICATION_HPP

Updated on 2026-03-04 at 13:10:44 -0800