summaryrefslogtreecommitdiff
path: root/libs/backends/wavesaudio/wavesapi/akupara/basics.hpp
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2016-01-12 07:45:46 -0500
committerPaul Davis <paul@linuxaudiosystems.com>2016-01-12 08:06:47 -0500
commit90c4985604884a94c9d7d34b77bb7f6fefe6c291 (patch)
tree532cd7015c036174331a27ca1333708c51c71978 /libs/backends/wavesaudio/wavesapi/akupara/basics.hpp
parentef9713d5c6ff7e2fc0c829d59d7edc652f49d8c2 (diff)
remove wavesaudio backend
Diffstat (limited to 'libs/backends/wavesaudio/wavesapi/akupara/basics.hpp')
-rw-r--r--libs/backends/wavesaudio/wavesapi/akupara/basics.hpp53
1 files changed, 0 insertions, 53 deletions
diff --git a/libs/backends/wavesaudio/wavesapi/akupara/basics.hpp b/libs/backends/wavesaudio/wavesapi/akupara/basics.hpp
deleted file mode 100644
index 33808ede8d..0000000000
--- a/libs/backends/wavesaudio/wavesapi/akupara/basics.hpp
+++ /dev/null
@@ -1,53 +0,0 @@
-/*
- * basics.hpp
- * Akupara
- *
- * Created by Udi on 12/19/06.
- * Copyright 2006 __MyCompanyName__. All rights reserved.
- *
- */
-#if !defined(_AKUPARA_BASICS_HPP__INCLUDED_)
-#define _AKUPARA_BASICS_HPP__INCLUDED_
-
-#include "WavesPublicAPI/wstdint.h"
-
-namespace Akupara
-{
- // The ultimate nothingness
- // This is useful for writing constructors that nullify their object, and for testing nullness
- struct null_type
- {
- null_type() {}
- null_type(const null_type *) {} // this allows 0 to be implicitly converted to null_type
- };
- inline null_type null() { return null_type(); }
-
-
- // This is a byte, guaranteed to be unsigned regardless of your compiler's char signedness
- typedef uint8_t byte_type;
-
-
- // derive from this if your class needs to be noncopyable
- class noncopyable_type
- {
- private:
- noncopyable_type(const noncopyable_type &);
- noncopyable_type &operator=(const noncopyable_type &);
- public:
- noncopyable_type() {}
- };
-
-
-} // namespace Akupara
-
-
-#if defined(__GNUC__)
-#define AKUPARA_EXPECT_FALSE(x) __builtin_expect(x,false)
-#define AKUPARA_EXPECT_TRUE(x) __builtin_expect(x,true )
-#else
-#define AKUPARA_EXPECT_FALSE(x) x
-#define AKUPARA_EXPECT_TRUE(x) x
-#endif // __GNUC__
-
-
-#endif // _AKUPARA_BASICS_HPP__INCLUDED_