Welcome![Sign In][Sign Up]
Location:
Search - stl move

Search list

[Other resourcedtl

Description: The goal of this library is to make ODBC recordsets look just like an STL container. As a user, you can move through our containers using standard STL iterators and if you insert(), erase() or replace() records in our containers changes can be automatically committed to the database for you. The library s compliance with the STL iterator and container standards means you can plug our abstractions into a wide variety of STL algorithms for data storage, searching and manipulation. In addition, the C++ reflection mechanism used by our library to bind to database tables allows us to add generic indexing and lookup properties to our containers with no special code required from the end-user. Because our code takes full advantage of the template mechanism, it adds minimal overhead compared with using raw ODBC calls to access a database. -The goal of this library is to make ODBC reco rdsets look just like an STL container. As a user , you can move through our containers using sta ndard STL iterators and if you insert () , erase () or replace () records in our container 's changes can be automatically committed to the database for you. The library's compliance with STL iterator and the container standards means you can plug our abstractions into a wide variety of the STL algorithms for data storage, searching and manipulation. In addition, the C reflection mechanism used by our library t o bind to database tables allows us to add generi c indexing and lookup properties to contain our ers with no special code required from the end-u ser. Because our code takes full advantage of th e template mechanism, it adds minimal
Platform: | Size: 422916 | Author: | Hits:

[Other resourceSTL-MOVE

Description: 可以实现三维STL文件(基于ASC码)的读入、易动、旋转、缩放。
Platform: | Size: 354992 | Author: 白加黑 | Hits:

[Other Databasesdtl

Description: The goal of this library is to make ODBC recordsets look just like an STL container. As a user, you can move through our containers using standard STL iterators and if you insert(), erase() or replace() records in our containers changes can be automatically committed to the database for you. The library s compliance with the STL iterator and container standards means you can plug our abstractions into a wide variety of STL algorithms for data storage, searching and manipulation. In addition, the C++ reflection mechanism used by our library to bind to database tables allows us to add generic indexing and lookup properties to our containers with no special code required from the end-user. Because our code takes full advantage of the template mechanism, it adds minimal overhead compared with using raw ODBC calls to access a database. -The goal of this library is to make ODBC reco rdsets look just like an STL container. As a user , you can move through our containers using sta ndard STL iterators and if you insert () , erase () or replace () records in our container 's changes can be automatically committed to the database for you. The library's compliance with STL iterator and the container standards means you can plug our abstractions into a wide variety of the STL algorithms for data storage, searching and manipulation. In addition, the C reflection mechanism used by our library t o bind to database tables allows us to add generi c indexing and lookup properties to contain our ers with no special code required from the end-u ser. Because our code takes full advantage of th e template mechanism, it adds minimal
Platform: | Size: 422912 | Author: | Hits:

[3D GraphicSliceSTL

Description: 三维切片:读取STL文件并进行按层切片的简单示例程序-Three-dimensional slices: Read STL file and layer slices by a simple example program
Platform: | Size: 142336 | Author: 邝宏武 | Hits:

[Other systemsSTL-MOVE

Description: 可以实现三维STL文件(基于ASC码)的读入、易动、旋转、缩放。-err
Platform: | Size: 4043776 | Author: 白加黑 | Hits:

[Database systemdtl.3.6.11.tar

Description: 数据库模板类 支持ODBC -The goal of this library is to make ODBC recordsets look just like an STL container. As a user, you can move through our containers using standard STL iterators and if you insert(), erase() or replace() records in our containers changes can be automatically committed to the database for you. The library s compliance with the STL iterator and container standards means you can plug our abstractions into a wide variety of STL algorithms for data storage, searching and manipulation. In addition, the C++ reflection mechanism used by our library to bind to database tables allows us to add generic indexing and lookup properties to our containers with no special code required from the end-user. Because our code takes full advantage of the template mechanism, it adds minimal overhead compared with using raw ODBC calls to access a database.
Platform: | Size: 793600 | Author: zxj | Hits:

[xml-soap-webserviceticpp

Description: TinyXML的C++封装。 使用异常,模板,迭代器等简化TinyXML使用- The TinyXML++ classes are all wrappers around the corresponding classes within TinyXML. <h2> Goals </h2> - Simplify the use and interface of TinyXml, using C++ concepts. - Use exceptions for error handling, so there are no return codes to check - Use templates for automatic type conversion - Use STL style iterators to move through nodes and attributes
Platform: | Size: 1639424 | Author: r | Hits:

[STLStLViewer

Description: 读取STL格式的文档,并把图形显示在自己创建的窗口中。程序能够利用鼠标移动和旋转图形。-read STL file, and visualize the graphic in your own designed widget. And you can move and rotate the figure with the mouse.
Platform: | Size: 4884480 | Author: youyaohui | Hits:

[Consolemaze

Description: 完成迷宫程序的设计 输入 从maze.txt文件读入迷宫,格式如下 其中第一行为迷宫的阶数N,接下来是一个N*N的矩阵代表迷宫,0为路径,1为障碍物。 实验要求 要求自学查询技术文档,利用STL 的stack 类,完成以下要求的功能: 1. 打印迷宫: DisplayMaze()或者重载<< 其中(1,0)位置和(N-2,N-1)位置打印“=>,其余的1的位置打印“##”,0的位置打印“ ”(两 个空格),注意每个位置都是两个字符。 打印示例: 2. 寻找走出迷宫的路径并输出 FindPath() 输出格式为: (1,1)->(2,1)->(2,2)->…… 并输出需要的步数。 3. 动态打印走迷宫的路径 WalkPath() 动态显示出走出迷宫的过程,每一次移动时都相应地修改显示状态。为了能让用户看清显示过程,必须使代码减速,做到大约每秒钟移动一次。为此,可在代码中插入等待语句,每次等待0.25秒的时间,即每秒钟走’4步。 你可能用到的语句: Sleep(250) 程序睡眠(in <windows.h>) system(“cls”) 清屏-Completed the design of the maze procedure Enter From maze.txt file read into the maze, the following format Wherein the first maze behavior order N, followed by a N* N matrix representing maze, path 0, and 1 is an obstacle. Experimental requirements Requires self-query technical documentation, use of STL stack class, complete the following requirements: Print maze: DisplayMaze or overloaded << Wherein the position of the (1,0) and position (N-2, N-1) Print "=> the rest position 1 Print"## ", the print position" (two Space), pay attention to each location are two characters. Print examples: Looking out of the labyrinth the path and the output FindPath () The output format is: (1,1)-> (2,1)-> (2,2)-> ...... And output the number of steps required. 3 Print dynamic Maze the path WalkPath (and) Dynamic display out of the labyrinth, every move to modify the display. Order to allow the user to see the display process, you must make the code deceleration do ab
Platform: | Size: 207872 | Author: ld | Hits:

[Data structsMaze

Description: 迷宫设计 利用STL 的stack 类,完成以下要求的功能: 1、打印迷宫: DisplayMaze()或者重载<< 其中(1,0)位置和(N-2,N-1)位置打印“=>,其余的1的位置打印“##”,0的位置打印“ ”(两个空格),注意每个位置都是两个字符。 2、寻找走出 迷宫的路径并输寻找走出 迷宫的路径并输寻找走出 迷宫的路径并输寻找走出 迷宫的路径并输寻找走出 迷宫的路径并输寻找走出 迷宫的路径并输FindPath(FindPath(FindPath(FindPath(FindPath(FindPath(FindPath( FindPath()实验设计 实验设计 输出格式为: (1,1)->(2,1)->(2,2)->…… 并输出需要的步数。 3. 动态打印走迷宫的路径 WalkPath() 动态显示出走出迷宫的过程,每一次移动时都相应地修改显示状态。为了能让用户看清显示过程,必须使代码减速,做到大约每秒钟移动一次。为此,可在代码中插入等待语句,每次等待0.25秒的时间,即每秒钟走’4步。 你可能用到的语句: Sleep(250) 程序睡眠(in <windows.h>) system(“cls”) 清屏 注意:完成1和2的工作后,屏幕应该显示”按任意键开始动态显示走迷宫路径”,然后等待用户按键后才继续3的工作。-Maze Design Use the STL stack class, complete the following required features: 1, print Maze: DisplayMaze () or reload << Wherein the (1,0) position and the (N-2, N-1) print position "=> 1 position the remaining print"## ", the 0 position Printing" "(two spaces), note that each position are the two characters. 2, find a path out of the maze and enter the path of looking out of the maze and enter the path of looking out of the maze and enter the path of looking out of the maze and enter the path of looking out of the maze and enter the path of looking out of the maze and enter FindPath (FindPath (FindPath (FindPath (FindPath (FindPath (FindPath (FindPath () experimental design experimental design Output format: (1,1)-> (2,1)-> (2,2)-> ...... And outputs the number of steps required. 3 Dynamic Print Maze path WalkPath () Dynamic process of showing out of the maze, every move are modified accordingly display state. In order to allow the user to see the display p
Platform: | Size: 2504704 | Author: 酉永松 | Hits:

[OpenGL programSTL-MOVE

Description: 基于 VC++和 OpenGL 的 STL 文件读取显示 STL 是三维模型常用的文件格式。对 STL 文件进行读取和显示,是对模型进行后续操作的前提。在对 STL 文件格式进行详细分析的基础上,以 VC++作为开发平台;利用 C++标准 IO 库的 ifstream 类 型定义对象并绑定 STL 文件 -Based on vc++ and OpenGL STL file read shows the STL is a 3 d model commonly used file format. To read and display of STL file, is the precondition of the model for subsequent operation. In the The STL file format, on the basis of detailed analysis, with vc++ as a development platform Using c++ standard IO library classes ifstream Type definition objects and bind the STL file
Platform: | Size: 8190976 | Author: sunny | Hits:

[ConsoleCellular_Automate

Description: A Cellular Automate Simulator which is implemented with the use of a STL-Container and with the use of an array. Good for educational purposes, to learn how to use the copy- & move semantics, as well as the R- and L-Values in C++.
Platform: | Size: 353280 | Author: Rocky | Hits:

[Linux-UnixSTLport-5.2.1.tar

Description: STLport-5.2.1 STLport是一个完全符合C++98标准(及2003年修订)的免费的C++标准库实现。它是由俄罗斯人Boris Fomitchev于1997年发起的开源项目,目的是基于著名的SGISTL开发一个可移植到各种平台上使用的高效的C++标准库。-STLport is an implementation of the C++ Standard Library - For multiplatform/multicompilers project a coherent Standard Library implementation. - An easy to use STL safe mode detecting bad use of containers and iterators. - Some original optimizations: template expression for string concatenation, short string optimization, move semantic for STL containers combination like vector of vector, an efficient std::allocator.
Platform: | Size: 917504 | Author: 351 | Hits:

[Linux-UnixSampleAnimatedGradient

Description: This a STLport specific test as we are using internal implementation details to check that the move has been correctly handled. For other STL implementation it is only a compile check. -This is a STLport specific test as we are using internal implementation details to check that the move has been correctly handled. For other STL implementation it is only a compile check.
Platform: | Size: 6144 | Author: wsbanxb | Hits:

[OpenGL programMySTLViewer

Description: 利用VC++ 6.0源代码与OPENGL配合,完成了stl文件的三维实体显示,网格图显示,旋转,放大,移动,并可将各个实体进行组合实现组图文件.-Using vc++ 6.0 source code with OPENGL, completed the STL file of the three-dimensional entity, according to the grid, according to rotate, zoom, move, and each entity can be combined to realize the map file.
Platform: | Size: 31559680 | Author: zhaojd | Hits:

CodeBus www.codebus.net