Changeset 5646 for pjproject/trunk/pjsip-apps/src/samples/pjsua2_demo.cpp
- Timestamp:
- Sep 8, 2017 11:16:09 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjsip-apps/src/samples/pjsua2_demo.cpp
r5467 r5646 129 129 acc_cfg.sipConfig.authCreds.push_back( AuthCredInfo("digest", "*", 130 130 "test1", 0, "test1") ); 131 std:: auto_ptr<MyAccount> acc(new MyAccount);131 std::unique_ptr<MyAccount> acc(new MyAccount); 132 132 acc->create(acc_cfg); 133 133 … … 308 308 AccountConfig acc_cfg; 309 309 acc_cfg.idUri = "sip:localhost"; 310 std:: auto_ptr<MyAccount> acc(new MyAccount);310 std::unique_ptr<MyAccount> acc(new MyAccount); 311 311 acc->create(acc_cfg); 312 312
Note: See TracChangeset
for help on using the changeset viewer.