10 lines
158 B
C++
10 lines
158 B
C++
#pragma once
|
|
|
|
#include "record_proxy.hpp"
|
|
#include "edges.hpp"
|
|
|
|
class EdgeProxy : public RecordProxy<Edge, Edges, EdgeProxy>
|
|
{
|
|
// TODO: implementation
|
|
};
|