Pull from FB rev 63ce89e2f2301e6bba44a111cc7d4218022156f6
[folly.git] / folly / test / function_benchmark / test_functions.h
1 // Copyright 2004-present Facebook.  All rights reserved.
2 #ifndef TEST_FUNCTIONS_H_
3 #define TEST_FUNCTIONS_H_
4
5 void doNothing();
6
7 class TestClass {
8  public:
9   void doNothing();
10 };
11
12 class VirtualClass {
13  public:
14   virtual ~VirtualClass();
15   virtual void doNothing();
16 };
17
18 #endif // TEST_FUNCTIONS_H_