Linux ip-172-26-2-223 5.4.0-1018-aws #18-Ubuntu SMP Wed Jun 24 01:15:00 UTC 2020 x86_64
Apache
: 172.26.2.223 | : 3.142.53.239
Cant Read [ /etc/named.conf ]
8.1.13
www
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
BLACK DEFEND!
README
+ Create Folder
+ Create File
/
usr /
share /
swig4.0 /
std /
[ HOME SHELL ]
Name
Size
Permission
Action
_std_deque.i
4.33
KB
-rw-r--r--
std_alloc.i
1.98
KB
-rw-r--r--
std_array.i
2.54
KB
-rw-r--r--
std_basic_string.i
6.35
KB
-rw-r--r--
std_carray.swg
1.39
KB
-rw-r--r--
std_char_traits.i
3.12
KB
-rw-r--r--
std_common.i
5.27
KB
-rw-r--r--
std_container.i
4.2
KB
-rw-r--r--
std_deque.i
3.41
KB
-rw-r--r--
std_except.i
1.16
KB
-rw-r--r--
std_ios.i
5.12
KB
-rw-r--r--
std_iostream.i
8.66
KB
-rw-r--r--
std_list.i
3.79
KB
-rw-r--r--
std_map.i
3.6
KB
-rw-r--r--
std_multimap.i
3.18
KB
-rw-r--r--
std_multiset.i
2.48
KB
-rw-r--r--
std_pair.i
3.65
KB
-rw-r--r--
std_queue.i
3.42
KB
-rw-r--r--
std_set.i
3.29
KB
-rw-r--r--
std_sstream.i
5.2
KB
-rw-r--r--
std_stack.i
3.4
KB
-rw-r--r--
std_streambuf.i
1.71
KB
-rw-r--r--
std_string.i
219
B
-rw-r--r--
std_unordered_map.i
3.98
KB
-rw-r--r--
std_unordered_multimap.i
3.15
KB
-rw-r--r--
std_unordered_multiset.i
2.95
KB
-rw-r--r--
std_unordered_set.i
3.68
KB
-rw-r--r--
std_vector.i
6.04
KB
-rw-r--r--
std_vectora.i
147
B
-rw-r--r--
std_wios.i
90
B
-rw-r--r--
std_wiostream.i
100
B
-rw-r--r--
std_wsstream.i
98
B
-rw-r--r--
std_wstreambuf.i
102
B
-rw-r--r--
std_wstring.i
249
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : std_common.i
%include <std/std_except.i> // // Use the following macro with modern STL implementations // //#define SWIG_STD_MODERN_STL // // Use this to deactivate the previous definition, when using gcc-2.95 // or similar old compilers. // //#define SWIG_STD_NOMODERN_STL // Here, we identify compilers we know have problems with STL. %{ #if defined(__GNUC__) # if __GNUC__ == 2 && __GNUC_MINOR <= 96 # define SWIG_STD_NOMODERN_STL # endif #endif %} // // Common code for supporting the C++ std namespace // %fragment("<string>"); %fragment("<stdexcept>"); %fragment("<stddef.h>"); %fragment("StdIteratorTraits","header",fragment="<stddef.h>") %{ #if defined(__SUNPRO_CC) && defined(_RWSTD_VER) # if !defined(SWIG_NO_STD_NOITERATOR_TRAITS_STL) # define SWIG_STD_NOITERATOR_TRAITS_STL # endif #endif #if !defined(SWIG_STD_NOITERATOR_TRAITS_STL) #include <iterator> #else namespace std { template <class Iterator> struct iterator_traits { typedef ptrdiff_t difference_type; typedef typename Iterator::value_type value_type; }; template <class Iterator, class Category,class T, class Reference, class Pointer, class Distance> struct iterator_traits<__reverse_bi_iterator<Iterator,Category,T,Reference,Pointer,Distance> > { typedef Distance difference_type; typedef T value_type; }; template <class T> struct iterator_traits<T*> { typedef T value_type; typedef ptrdiff_t difference_type; }; template<typename _InputIterator> inline typename iterator_traits<_InputIterator>::difference_type distance(_InputIterator __first, _InputIterator __last) { typename iterator_traits<_InputIterator>::difference_type __n = 0; while (__first != __last) { ++__first; ++__n; } return __n; } } #endif %} %fragment("StdTraitsCommon","header",fragment="<string>") %{ namespace swig { template <class Type> struct noconst_traits { typedef Type noconst_type; }; template <class Type> struct noconst_traits<const Type> { typedef Type noconst_type; }; /* type categories */ struct pointer_category { }; struct value_category { }; /* General traits that provides type_name and type_info */ template <class Type> struct traits { }; template <class Type> inline const char* type_name() { return traits<typename noconst_traits<Type >::noconst_type >::type_name(); } template <class Type> struct traits_info { static swig_type_info *type_query(std::string name) { name += " *"; return SWIG_TypeQuery(name.c_str()); } static swig_type_info *type_info() { static swig_type_info *info = type_query(type_name<Type>()); return info; } }; /* Partial specialization for pointers (traits_info) */ template <class Type> struct traits_info<Type *> { static swig_type_info *type_query(std::string name) { name += " *"; return SWIG_TypeQuery(name.c_str()); } static swig_type_info *type_info() { static swig_type_info *info = type_query(type_name<Type>()); return info; } }; template <class Type> inline swig_type_info *type_info() { return traits_info<Type>::type_info(); } /* Partial specialization for pointers (traits) */ template <class Type> struct traits <Type *> { typedef pointer_category category; static std::string make_ptr_name(const char* name) { std::string ptrname = name; ptrname += " *"; return ptrname; } static const char* type_name() { static std::string name = make_ptr_name(swig::type_name<Type>()); return name.c_str(); } }; template <class Type, class Category> struct traits_as { }; template <class Type, class Category> struct traits_check { }; } %} /* Generate the traits for a swigtype */ %define %traits_swigtype(Type...) %fragment(SWIG_Traits_frag(Type),"header",fragment="StdTraits") { namespace swig { template <> struct traits< Type > { typedef pointer_category category; static const char* type_name() { return #Type; } }; } } %enddef /* Generate the typemaps for a class that has 'value' traits */ %define %typemap_traits(Code,Type...) %typemaps_asvalfrom(%arg(Code), %arg(swig::asval< Type >), %arg(swig::from), %arg(SWIG_Traits_frag(Type)), %arg(SWIG_Traits_frag(Type)), Type); %enddef /* Generate the typemaps for a class that behaves more like a 'pointer' or plain wrapped Swigtype. */ %define %typemap_traits_ptr(Code,Type...) %typemaps_asptrfrom(%arg(Code), %arg(swig::asptr), %arg(swig::from), %arg(SWIG_Traits_frag(Type)), %arg(SWIG_Traits_frag(Type)), Type); %enddef /* Equality methods */ %define %std_equal_methods(Type...) %extend Type { bool operator == (const Type& v) { return *self == v; } bool operator != (const Type& v) { return *self != v; } } %enddef /* Order methods */ %define %std_order_methods(Type...) %extend Type { bool operator > (const Type& v) { return *self > v; } bool operator < (const Type& v) { return *self < v; } bool operator >= (const Type& v) { return *self >= v; } bool operator <= (const Type& v) { return *self <= v; } } %enddef /* Comparison methods */ %define %std_comp_methods(Type...) %std_equal_methods(Type ) %std_order_methods(Type ) %enddef
Close