Skip to content

Commit 2ed9f2a

Browse files
committed
Add TemplateEnv and IDiagnosticConsumer prototypes
1 parent 3161aae commit 2ed9f2a

File tree

2 files changed

+32
-0
lines changed

2 files changed

+32
-0
lines changed
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
#ifndef JINJA2CPP_DIAGNOSTIC_CONSUMER_H
2+
#define JINJA2CPP_DIAGNOSTIC_CONSUMER_H
3+
4+
#include "template.h"
5+
6+
namespace jinja2
7+
{
8+
9+
class IDiagnosticConsumer
10+
{
11+
public:
12+
};
13+
14+
} // jinja2
15+
16+
#endif // JINJA2CPP_DIAGNOSTIC_CONSUMER_H

include/jinja2cpp/template_env.h.h

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
#ifndef JINJA2CPP_TEMPLATE_ENV_H
2+
#define JINJA2CPP_TEMPLATE_ENV_H
3+
4+
#include "template.h"
5+
6+
namespace jinja2
7+
{
8+
9+
class TemplateEnv
10+
{
11+
public:
12+
};
13+
14+
} // jinja2
15+
16+
#endif // JINJA2CPP_TEMPLATE_ENV_H

0 commit comments

Comments
 (0)