. . but when i try to go to hardware and drivers in windows nothing shows up under networking or the floppy drive . . . I know this is a simple issue but am a little out of ideas.
A:
Open a command prompt and execute
netsh wlan set hostednetwork mode=allow ssid= key=
i have used this with a BNET54G usb network device and it worked perfectly.
Q:
Multiple definitions in which type
First off, this is my first post, so I'm not sure I am doing this correctly. I'll be as detailed as I can:
I'm trying to implement a pattern I learned from a book (I'm on chapter 9). The code below works:
test.cpp
#include
template
struct test
{
const std::vector& v;
std::vector vs;
test(const std::vector& _v) : v(_v) {}
const std::vector& get() const { return v; }
};
int main()
test t0;
test t1;
std::cout
I get the following error:
test.cpp:6:13: error: redefinition of 'test test::test(const std::vector
Related links:
Comments