9 lines
120 B
C++
9 lines
120 B
C++
#pragma once
|
|
|
|
#include <memory>
|
|
|
|
namespace Fig
|
|
{
|
|
struct Context;
|
|
using ContextPtr = std::shared_ptr<Context>;
|
|
}; |