Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Wanet Telecoms Ltd on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. hectorDUQUE

    STL map (read only)

    hi guys, do you know what this means: error: increment of data-member 'std::pair<const std::basic_string<char, std::char_traits<char>, std::allocator<char> >, int>::second' in read-only structure i don't understand how a map structure can be a read only structure. The code is...
  2. hectorDUQUE

    STL find

    hi guys, i have sintax problems using a STL find function :-( typedef std::set<string> groupOfFileNames_type; typedef std::map<string, groupOfFileNames_type> map_groupFN_type; typedef std::vector<string> resultsGroups_type; typedef std::map<string, resultsGroups_type>...
  3. hectorDUQUE

    string to char*

    hi guys, i am getting problems trying to convert a c++ basic string to a char * (C languaje). error: cannot convert ‘std::string’ to ‘char*’ for argument ‘1’ to ‘void hD_readIniFile(char*, map_group_type&, map_groupFN_type&)’ string fn_ch(*cur_edge); hD_readIniFile(fn_ch...
  4. hectorDUQUE

    string to char*

    hi guys, i am getting problems trying to convert a c++ basic string to a char * (C languaje). error: cannot convert ‘std::string’ to ‘char*’ for argument ‘1’ to ‘void hD_readIniFile(char*, map_group_type&, map_groupFN_type&)’ string fn_ch(*cur_edge); hD_readIniFile(fn_ch...
  5. hectorDUQUE

    pointers (help)

    hi guys, please some help with pointers: this STLplus code is good: int main(int argc, char* argv[]) { digraph<string,int> graph; digraph<string,int>::iterator node1 = graph.insert("1"); } this one has a reference problem: void initGraph(const digraph<string,int>& graph){...
  6. hectorDUQUE

    STL double-linked list

    hi guys, i wonder if somebody knows where to find an STL library for implemeting a double-linked list: previous and next element and so on ... thanks in advance, hector
  7. hectorDUQUE

    error: extra qualification

    hi guys, i am just updating form RH7.2 to FC6 :-( and i got this message whe trying to compile with gcc-c++ 4.1.1 error: extra qualification 'hd::socket::' on member 'connectionName' may somebody tell me whats going on ? i am not going to a lower version of gcc ...
  8. hectorDUQUE

    interface C with Bash shell

    hi guys, may somebody help me by privinding an example of an interface C-Bash shell ? i mean, i can write a C program which runs a bash shell (using the system command), but how to get the answer ? thanks in advance, hector

Part and Inventory Search

Back
Top