You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lnav/src/plugins.hh

19 lines
263 B
C++

#ifndef __plugins_hh
#define __plugins_hh
#include <string>
class extension_point {
public:
extension_point(std::string name);
~extension_point();
std::string get_name() { return this->ep_name; };
private:
std::string ep_name;
};
#endif