mapnik/benchmark/template.cpp
2013-11-14 23:11:21 -08:00

17 lines
285 B
C++

#include "bench_framework.hpp"
class test : public benchmark::test_case
{
public:
test(mapnik::parameters const& params)
: test_case(params) {}
bool validate() const
{
return true;
}
void operator()() const
{
}
};
BENCHMARK(test,"test name")