代码搜索:Namespaces

找到约 1,276 项符合「Namespaces」的源代码

代码结果 1,276
www.eeworm.com/read/172143/9723224

h config.h

#ifndef CRYPTOPP_CONFIG_H #define CRYPTOPP_CONFIG_H // define this if running on a little-endian CPU #define IS_LITTLE_ENDIAN // define this if your compiler doesn't support namespaces #i
www.eeworm.com/read/146635/12629136

h config.h

#ifndef CRYPTOPP_CONFIG_H #define CRYPTOPP_CONFIG_H // define this if running on a little-endian CPU #define IS_LITTLE_ENDIAN // define this if your compiler doesn't support namespaces #i
www.eeworm.com/read/111545/15510204

h config.h

#ifndef CRYPTOPP_CONFIG_H #define CRYPTOPP_CONFIG_H // define this if running on a little-endian CPU #define IS_LITTLE_ENDIAN // define this if your compiler doesn't support namespaces #i
www.eeworm.com/read/110626/15528667

cpp fig21_05.cpp

// Fig. 21.5: fig21_05.cpp // Demonstrating namespaces. #include using namespace std; // use std namespace int myInt = 98; // global variable namespace Example { const d
www.eeworm.com/read/105882/15656098

news

-*- text -*- Version 1.4 NEWS (See changes.txt for more details) * A new home page: www.s-lang.org * Support for multiple namespaces (both public and private) * Dynamic linking of modules via
www.eeworm.com/read/101225/15840967

h config.h

#ifndef CRYPTOPP_CONFIG_H #define CRYPTOPP_CONFIG_H // define this if running on a little-endian CPU #define IS_LITTLE_ENDIAN // define this if your compiler doesn't support namespaces #i
www.eeworm.com/read/101224/15841201

h config.h

#ifndef CRYPTOPP_CONFIG_H #define CRYPTOPP_CONFIG_H // define this if running on a little-endian CPU #define IS_LITTLE_ENDIAN // define this if your compiler doesn't support namespaces #i
www.eeworm.com/read/188512/8532572

cpp fig24_02.cpp

// Fig. 24.2: Fig24_02.cpp // Demonstrating namespaces. #include using namespace std; // use std namespace int integer1 = 98; // global variable // create namespace Exa
www.eeworm.com/read/187205/8843964

cs namespace.cs

// // namespace.cs: Tracks namespaces // // Author: // Miguel de Icaza (miguel@ximian.com) // // (C) 2001 Ximian, Inc. // using System; using System.Collections; using System.Collections.Specialized
www.eeworm.com/read/284853/8887294

cs bitstream.cs

// Stephen Toub // stoub@microsoft.com // // BitStream.cs // Stream for reading and writing individual bits from and to another stream. // // v1.0.0 // July 17th, 2002 #region Namespaces us