summaryrefslogtreecommitdiffstats
path: root/include/astra/CudaDataOperationAlgorithm.h
diff options
context:
space:
mode:
authorWillem Jan Palenstijn <Willem.Jan.Palenstijn@cwi.nl>2017-02-16 14:37:44 +0100
committerWillem Jan Palenstijn <Willem.Jan.Palenstijn@cwi.nl>2017-02-16 14:37:44 +0100
commit27e23f29f368e06315f2ea381ef38a3affa93c64 (patch)
tree0cac9c94878909bb1eff59c8d4ae3e9b815aa76e /include/astra/CudaDataOperationAlgorithm.h
parentf591df5ff62deb8de2956cc8200db4034fb6ea05 (diff)
downloadastra-27e23f29f368e06315f2ea381ef38a3affa93c64.tar.gz
astra-27e23f29f368e06315f2ea381ef38a3affa93c64.tar.bz2
astra-27e23f29f368e06315f2ea381ef38a3affa93c64.tar.xz
astra-27e23f29f368e06315f2ea381ef38a3affa93c64.zip
Remove using namespace std; from headers
Diffstat (limited to 'include/astra/CudaDataOperationAlgorithm.h')
-rw-r--r--include/astra/CudaDataOperationAlgorithm.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/astra/CudaDataOperationAlgorithm.h b/include/astra/CudaDataOperationAlgorithm.h
index 37391fb..79c5bd6 100644
--- a/include/astra/CudaDataOperationAlgorithm.h
+++ b/include/astra/CudaDataOperationAlgorithm.h
@@ -75,7 +75,7 @@ public:
*
* @return map with all boost::any object
*/
- virtual map<string,boost::any> getInformation();
+ virtual std::map<std::string,boost::any> getInformation();
/** Get a single piece of information represented as a boost::any
*
@@ -110,10 +110,10 @@ protected:
CFloat32Data2D* m_pMask;
- vector<CFloat32Data2D*> m_pData;
- vector<float> m_fScalar;
+ std::vector<CFloat32Data2D*> m_pData;
+ std::vector<float> m_fScalar;
- string m_sOperation;
+ std::string m_sOperation;
};