alec

Abstraction Layer for Escape Codes
git clone git://git.dimitrijedobrota.com/alec.git
Log | Files | Refs | README | LICENSE | HACKING | CONTRIBUTING | CODE_OF_CONDUCT | BUILDING

generator.h (303B)


0 #pragma once 1 2 #include <string> 3 #include <vector> 4 5 namespace alec 6 { 7 8 struct record 9 { 10 std::string name; 11 std::vector<std::string> args; 12 std::vector<std::string> rules; 13 std::vector<std::string> recipe; 14 15 bool operator<(const record& rhs) const { return name < rhs.name; } 16 }; 17 18 } // namespace alec