aboutsummaryrefslogtreecommitdiff
path: root/include/internal/catch_interfaces_generators.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/internal/catch_interfaces_generators.h')
-rw-r--r--include/internal/catch_interfaces_generators.h32
1 files changed, 0 insertions, 32 deletions
diff --git a/include/internal/catch_interfaces_generators.h b/include/internal/catch_interfaces_generators.h
deleted file mode 100644
index d163d5a..0000000
--- a/include/internal/catch_interfaces_generators.h
+++ /dev/null
@@ -1,32 +0,0 @@
-/*
- * Created by Phil on 7/8/2012.
- * Copyright 2011 Two Blue Cubes Ltd. All rights reserved.
- *
- * Distributed under the Boost Software License, Version 1.0. (See accompanying
- * file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
- */
-#ifndef TWOBLUECUBES_CATCH_INTERFACES_GENERATORS_H_INCLUDED
-#define TWOBLUECUBES_CATCH_INTERFACES_GENERATORS_H_INCLUDED
-
-#include <string>
-
-namespace Catch {
-
- struct IGeneratorInfo {
- virtual ~IGeneratorInfo();
- virtual bool moveNext() = 0;
- virtual std::size_t getCurrentIndex() const = 0;
- };
-
- struct IGeneratorsForTest {
- virtual ~IGeneratorsForTest();
-
- virtual IGeneratorInfo& getGeneratorInfo( std::string const& fileInfo, std::size_t size ) = 0;
- virtual bool moveNext() = 0;
- };
-
- IGeneratorsForTest* createGeneratorsForTest();
-
-} // end namespace Catch
-
-#endif // TWOBLUECUBES_CATCH_INTERFACES_GENERATORS_H_INCLUDED