mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-06-08 22:08:29 -05:00
9 lines
166 B
C++
9 lines
166 B
C++
#include "PrettyPrinter.h"
|
|
|
|
#include <iostream>
|
|
|
|
void PrettyPrinter::Print(const IDataRepository* repository)
|
|
{
|
|
std::cout << "Pretty printing..." << std::endl;
|
|
}
|