Files

18 lines
208 B
C++
Raw Permalink Normal View History

2025-01-04 11:47:55 -04:00
#ifndef IMPLIX_H
#define IMPLIX_H
2025-07-22 06:48:04 -04:00
namespace smo {
2025-01-04 11:47:55 -04:00
namespace implix {
class Implix
{
public:
Implix() = default;
~Implix() = default;
};
} // namespace implix
2025-07-22 06:48:04 -04:00
} // namespace smo
2025-01-04 11:47:55 -04:00
#endif // IMPLIX_H