I hereby claim:
- I am karubabu on github.
- I am karubabu (https://keybase.io/karubabu) on keybase.
- I have a public key ASCEI8-Wcncjspr9eE2b5NmFejoNR8B38BMzqvClVCwf9Qo
To claim this, I am signing this object:
[ | |
{ | |
"repository": "android_external_stlport", | |
"target_path": "external/stlport" | |
}, | |
{ | |
"repository": "android_kernel_google_msm", | |
"target_path": "kernel/google/msm" | |
} | |
] |
I hereby claim:
To claim this, I am signing this object:
#!/bin/sh | |
VENDOR=lge | |
DEVICE=hammerhead | |
echo "Please wait..." | |
wget -nc -q https://dl.google.com/dl/android/aosp/hammerhead-mob31e-factory-90504514.zip | |
unzip hammerhead-mob31e-factory-90504514.zip | |
cd hammerhead-mob31e | |
unzip image-hammerhead-mob31e.zip |
#include <iostream> | |
using namespace std; | |
class Acls { | |
public: | |
int a; | |
void disp(){ cout << "Acls: a=" << a << endl; } | |
}; | |
class Bcls: public Acls { |