cellar/include/internal/bottles.hpp.cog
2017-03-23 15:13:52 -07:00

21 lines
487 B
C++

// vim: filetype=cpp :
#ifndef __INTERNAL_BOTTLES_HPP
#define __INTERNAL_BOTTLES_HPP
#pragma once
namespace cellar {
namespace bottles {
/*[[[cog
import cog
with open("src/bottles/commands.txt") as commandsfile:
for line in commandsfile:
item = line.strip().split(" ")
cog.outl("extern void {0} (int, vector<string>);".format(item[1]))
]]]*/
//[[[end]]]
}
}
#endif // __INTERNAL_BOTTLES_HPP