13 lines
197 B
C++
13 lines
197 B
C++
#include <iostream>
|
|
|
|
#include "storage/vertex_proxy.hpp"
|
|
|
|
using std::cout;
|
|
using std::endl;
|
|
|
|
int main() {
|
|
VertexProxy vertex_proxy;
|
|
cout << "Record Proxy Examples" << endl;
|
|
return 0;
|
|
}
|