libzypp  17.25.2
ByteArray.h
Go to the documentation of this file.
1 /*---------------------------------------------------------------------\
2 | ____ _ __ __ ___ |
3 | |__ / \ / / . \ . \ |
4 | / / \ V /| _/ _/ |
5 | / /__ | | | | | | |
6 | /_____||_| |_| |_| |
7 | |
8 \---------------------------------------------------------------------*/
9 #ifndef ZYPP_BYTEARRAY_H
10 #define ZYPP_BYTEARRAY_H
11 #include <vector>
12 
13 namespace zypp {
14  using ByteArray = std::vector<unsigned char>;
15 }
16 
17 
18 #endif
Easy-to use interface to the ZYPP dependency resolver.
Definition: CodePitfalls.doc:1
std::vector< unsigned char > ByteArray
Definition: ByteArray.h:14