mirror of
https://github.com/spice2x/spice2x.github.io.git
synced 2026-08-01 22:30:42 -07:00
18 lines
294 B
C++
18 lines
294 B
C++
#pragma once
|
|
|
|
#include <vector>
|
|
#include "api/module.h"
|
|
#include "api/request.h"
|
|
|
|
namespace api::modules {
|
|
|
|
class DDR : public Module {
|
|
public:
|
|
DDR();
|
|
|
|
private:
|
|
// function definitions
|
|
void tapeled_get(Request &req, Response &res);
|
|
};
|
|
}
|