File: singleton_tests.hpp

package info (click to toggle)
cpr 1.12.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,452 kB
  • sloc: cpp: 14,315; ansic: 637; sh: 139; xml: 38; makefile: 16
file content (9 lines) | stat: -rw-r--r-- 141 bytes parent folder | download
1
2
3
4
5
6
7
8
9
#pragma once

#include "cpr/cpr.h"

class TestSingleton {
    CPR_SINGLETON_DECL(TestSingleton)
  private:
    TestSingleton() = default;
};